From 6c4a8181666f08f9dfa92954a1893ba3fd6a579d Mon Sep 17 00:00:00 2001 From: Daniel Sabo Date: Fri, 5 Apr 2013 20:47:56 -0700 Subject: [PATCH] Disable gegl-lies conversions They lazy table generation these conversions use causes babl to overestimate their cost while also overestimating their accuracy. I used "#if 0" rather than disabling the library because I want to ensure the conversion gets removed without people needing to do rm lib/babl-0.1/* --- extensions/gggl-lies.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/gggl-lies.c b/extensions/gggl-lies.c index 47a973b..058ec8e 100644 --- a/extensions/gggl-lies.c +++ b/extensions/gggl-lies.c @@ -1564,6 +1564,7 @@ int init (void); int init (void) { +#if 0 const Babl *rgbaF = babl_format_new ( babl_model ("RGBA"), babl_type ("float"), @@ -1758,6 +1759,7 @@ init (void) o (rgb8, rgbA8); o (rgba8, rgb8); o (rgbaF, rgbA8); +#endif return 0; } -- 2.30.2